Public Overloads Overrides Function GetBytes( _
ByVal () As Char, _
ByVal As Integer, _
ByVal As Integer, _
ByVal () As Byte, _
ByVal As Integer _
) As Integer
Dim instance As ImapUTF7
Dim chars() As Char
Dim charIndex As Integer
Dim charCount As Integer
Dim bytes() As Byte
Dim byteIndex As Integer
Dim value As Integer
value = instance.GetBytes(chars, charIndex, charCount, bytes, byteIndex)
public override int GetBytes(
char[] ,
int ,
int ,
byte[] ,
int
)
public: int GetBytes(
char[]* ,
int ,
int ,
byte[]* ,
int
) override
public:
int GetBytes(
array<char>^ ,
int ,
int ,
array<byte>^ ,
int
) override
Parameters
- chars
- Characters to be encoded.
- charIndex
- Indexer of first character.
- charCount
- Character count.
- bytes
- Byte array destination.
- byteIndex
- Index for first output byte.
Return Value
Number of bytes required by the encoding.